home *** CD-ROM | disk | FTP | other *** search
-
- /*===========================================================\
- | UltraShell (tm) |
- | |
- | ucommand.h |
- | This header file defines variables needed to permit |
- | external commands to obtain command line arguments |
- | and to access UltraShell files for standard input, |
- | output, and error. |
- | |
- | Copyright (C) 1994 by Zack T. Smith |
- | |
- | Permission is granted to freely distribute this |
- | file, so long as the data contained herein is not |
- | altered in any way. |
- \===========================================================*/
-
-
-
- #define SUCCESS (0)
- #define CANNOT_FIND_TEMP_DIR (1)
- #define MAX_PATH_LEN (300)
-
-
- extern FILE *shell_stdin;
- extern FILE *shell_stdout;
- extern FILE *shell_stderr;
-
-
- extern long ucommand (char **argv, unsigned long max_args);
-
- extern void shell_exit (short);
-
-